home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / CONTAS2.PAK / CONTRDOC.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  48 lines

  1. // ContrDoc.h : interface of the CContainerDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. #define HINT_UPDATE_WINDOW  0
  6. #define HINT_UPDATE_ITEM    1
  7.  
  8. class CContainerDoc : public COleDocument
  9. {
  10. protected: // create from serialization only
  11.     CContainerDoc();
  12.     DECLARE_DYNCREATE(CContainerDoc)
  13.  
  14. // Attributes
  15. public:
  16.  
  17. // Operations
  18. public:
  19.  
  20. // Overrides
  21.     // ClassWizard generated virtual function overrides
  22.     //{{AFX_VIRTUAL(CContainerDoc)
  23.     public:
  24.     virtual BOOL OnNewDocument();
  25.     virtual void Serialize(CArchive& ar);
  26.     //}}AFX_VIRTUAL
  27.  
  28. // Implementation
  29. public:
  30.     virtual ~CContainerDoc();
  31. #ifdef _DEBUG
  32.     virtual void AssertValid() const;
  33.     virtual void Dump(CDumpContext& dc) const;
  34. #endif
  35.  
  36. protected:
  37.  
  38. // Generated message map functions
  39. protected:
  40.     //{{AFX_MSG(CContainerDoc)
  41.         // NOTE - the ClassWizard will add and remove member functions here.
  42.         //    DO NOT EDIT what you see in these blocks of generated code !
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48.